@font-face {
	font-family: 'SourceHanSans-Normal';
	src: url('../fonts/SourceHanSansCN/SourceHanSansCN-Normal.otf');
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: 'SourceHanSans-Regular';
	src: url('../fonts/SourceHanSansCN/SourceHanSansCN-Regular.otf');
	font-style: normal;
	font-weight: normal;
} 
/**
 * 内页banner样式
 */
.media-banner{
	margin: 0;
	min-height: 400px;
	overflow: hidden;
	position: relative;
	z-index: 4;
}
.media-banner .background-media{
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	background-repeat: no-repeat!important;
	background-size: cover!important;
	background-position: center center!important;
}
.media-banner .banner-text{
	position: absolute;
	z-index: 3;
	left: 0;
	right: 0;
	top: 0;
	display: flex;
	bottom: 0;
	align-items: center;
}
.media-banner .banner-text .banner-text-title{
	width: 100%;
	font-size: 24px;
	color: #595757;
	font-family: 'SourceHanSans-Normal';
	text-align: center;
}


.media-banner .banner-text.banner-column-box{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
}
.media-banner .banner-text .banner-column{
	margin: 20px 0 0px;
}
.media-banner .banner-text .banner-column a{
	display: inline-block;
	line-height: 30px;
	font-size: 14px;
	margin: 0 5px;
	padding: 0 20px;
	border: 1px solid #9e9e9f;
}
.media-banner .banner-text .banner-column a.active,
.media-banner .banner-text .banner-column a:hover{
	background: #9e9e9f;
	color: #ffffff;
}

.media-banner a.down{
	width: 110px;
	height: 35px;
	display: block;
	position: absolute;
	bottom: 40px;
	background: url(../images/down.png) no-repeat center;
	background-size: 100% 100%;
	opacity: 1;
	z-index: 5;
	left: 50%;
	margin-left: -55px;
	animation: arrow 3s cubic-bezier(0.5, 0, 0.1, 1) infinite;
    -webkit-animation: arrow 3s cubic-bezier(0.5, 0, 0.1, 1) infinite;
}
.media-banner a.down:hover{
	animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.page-title{
	text-align: center;
	font-size: 24px;
	line-height: 24px;
	color: #595757;
	font-family: 'SourceHanSans-Normal';
}

@media screen and (min-width:768px) {
	.media-banner{
		min-height: 60vh;
	}
	.media-banner .background-media{
		background-attachment: fixed!important;
	}
	.media-banner .banner-text .banner-text-title{
		font-size: 30px;
	}
	.page-title{
		font-size: 28px;
		line-height: 28px;
	}
	.media-banner .banner-text .banner-column{
		margin: 30px 0 30px;
	}
	.media-banner .banner-text .banner-column a{
		display: inline-block;
		line-height: 34px;
		font-size: 16px;
		margin: 0 10px;
		padding: 0 25px;
		border: 1px solid #9e9e9f;
	}
}
@media screen and (min-width:992px) {
	.media-banner{
		min-height: 100vh;
	}
	.media-banner a.down{
		width: 220px;
		height: 70px;
		bottom: 60px;
		margin-left: -110px;
		animation: arrow1 3s cubic-bezier(0.5, 0, 0.1, 1) infinite;
    	-webkit-animation: arrow1 3s cubic-bezier(0.5, 0, 0.1, 1) infinite;
	}
	.media-banner .banner-text .banner-text-title{
		font-size: 34px;
		line-height: 34px;
	}
	.page-title{
		font-size: 34px;
		line-height: 34px;
	}
	.media-banner .banner-text .banner-column{
		margin: 30px 0 50px;
	}
	.media-banner .banner-text .banner-column a{
		display: inline-block;
		line-height: 38px;
		font-size: 16px;
		margin: 0 10px;
		padding: 0 30px;
		border: 1px solid #9e9e9f;
	}
}
@keyframes arrow{
    0%,
    100%{
        bottom: 40px;
        opacity: 1;
    }

    50%{
        bottom: 20px;
        opacity: 1
    }
    
}
@-webkit-keyframes arrow{
    0%,
    100%{
        bottom: 40px;
        opacity: 1;
    }

    50%{
        bottom: 20px;
        opacity: 1
    }
    
}
@keyframes arrow1{
	    0%,
	    100%{
	        bottom: 60px;
	        opacity: 1;
	    }

	    50%{
	        bottom: 30px;
	        opacity: 1
	    }
	    
	}
@-webkit-keyframes arrow1{
    0%,
    100%{
        bottom: 60px;
        opacity: 1;
    }

    50%{
        bottom: 30px;
        opacity: 1
    }
    
}
